home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Multimedia / MPlay / Source / Controller.h < prev    next >
Encoding:
Text File  |  1995-12-12  |  432 b   |  26 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import <objc/List.h>
  4. #import <string.h>
  5.  
  6. @interface Controller:Object
  7. {
  8.     id movies;
  9.     unsigned char playProgram[MAXPATHLEN];
  10. }
  11. - open:sender;
  12. - (BOOL) launchMovie:(const char *) filename;
  13.  
  14. @end
  15.  
  16. @interface Controller(ApplicationDelegate)
  17.  
  18. - (int)app:sender openFile:(const char *)path type:(const char *)type;
  19. - (BOOL)appAcceptsAnotherFile:sender;
  20. - appWillInit:sender;
  21. - appWillTerminate:sender;
  22.  
  23. @end
  24.  
  25.  
  26.